docs: dsh 0.1.2-rc.1 (next) adds network-proxy support via new http-proxy util package - #18
Open
github-actions[bot] wants to merge 1 commit into
Open
docs: dsh 0.1.2-rc.1 (next) adds network-proxy support via new http-proxy util package#18github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 28, 2026 22:26
f804802 to
19eff56
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 30, 2026 16:46
19eff56 to
319f702
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 30, 2026 21:13
319f702 to
45dc86b
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 31, 2026 05:45
45dc86b to
d1da29c
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 31, 2026 14:01
d1da29c to
35b553e
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
August 31, 2026 22:55
35b553e to
79a0d8b
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 1, 2026 05:18
79a0d8b to
a27ef90
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 1, 2026 11:46
a27ef90 to
3f6b960
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 1, 2026 16:45
3f6b960 to
fd55fb9
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 1, 2026 21:07
fd55fb9 to
ee1a405
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 2, 2026 04:43
ee1a405 to
cc8e0aa
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 2, 2026 11:27
cc8e0aa to
c504889
Compare
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 2, 2026 16:40
c504889 to
d1a6bca
Compare
…roxy util package This is a real dsh feature drop, not freshness churn. A new rc went out on the `next` channel and the docs surface a new capability with security-relevant behavior: DSH now routes outbound traffic — model calls, web search, page fetches, HTTP MCP servers — through the standard `HTTP_PROXY` / `HTTPS_PROXY` / `ALL_PROXY` / `NO_PROXY` environment variables, read once at launch. Anyone running DSH behind a corporate proxy or a local proxy app (Clash etc.) gets new egress behavior, and the docs spell out several sharp edges a developer should not discover by accident. - **`next` channel advances to `0.1.2-rc.1`** (2026-09-03) in `dsh/npm.md`; `latest` stays `0.1.1-rc.2`, `alpha` stays `0.1.2-alpha.5`. First `0.1.2`-line rc since the alphas. - **New guide "Run DSH behind a network proxy"** (`content/en/dsh/docs/user/guide/network-proxy.md`) — the first docs for proxy handling. Highlights that are easy to miss: DSH **never** reads OS proxy settings (browsers ≠ terminal), SOCKS proxies are unsupported (`socks5://` is rejected and that scheme goes direct), `NO_PROXY` does **not** accept CIDR ranges, loopback is always direct, and the model-written code-runtime/workflow workers never receive proxy variables (so a passworded proxy URL can't leak into the model's environment — but it *does* reach child tools like `git`/`gh`, which the model can ask to print). - **Trust-boundary rule**: a project's `.env` cannot set proxy variables — DSH refuses to start rather than let a `git clone`'d repo steer traffic; `$DSH_HOME/.env` is the supported place. TLS-intercepting corporate proxies need `NODE_EXTRA_CA_CERTS` exported before launch. - **New `@deepseek-ai/dsh-http-proxy` util package** (`packages/util/http-proxy`) in the regenerated module graph and config catalog; `e2b`, `subprocess`, `web-fetch-http`, `session-snapshot`, and `loader-smoke` now all depend on it — proxy plumbing was centralized into one package. The `e2b`/`subprocess` table-row moves and the e2b source line-number bump are incidental reorg churn from that refactor. Metadata (`llms.txt`, `.metadata.json`) only add the new page; two old `news/` entries (news1226, news250120) now resolve their titles instead of being flagged as fallback shells — index hygiene, not content change.
github-actions
Bot
force-pushed
the
docs/sync
branch
from
September 3, 2026 11:23
d1a6bca to
b6f0e9d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is a real dsh feature drop, not freshness churn. A new rc went out on the
nextchannel and the docs surface a new capability with security-relevantbehavior: DSH now routes outbound traffic — model calls, web search, page
fetches, HTTP MCP servers — through the standard
HTTP_PROXY/HTTPS_PROXY/ALL_PROXY/NO_PROXYenvironment variables, read once at launch. Anyonerunning DSH behind a corporate proxy or a local proxy app (Clash etc.) gets new
egress behavior, and the docs spell out several sharp edges a developer should
not discover by accident.
nextchannel advances to0.1.2-rc.1(2026-09-03) indsh/npm.md;lateststays0.1.1-rc.2,alphastays0.1.2-alpha.5. First0.1.2-line rc since the alphas.content/en/dsh/docs/user/guide/network-proxy.md) — the first docs for proxy handling. Highlights that are easy to miss: DSH never reads OS proxy settings (browsers ≠ terminal), SOCKS proxies are unsupported (socks5://is rejected and that scheme goes direct),NO_PROXYdoes not accept CIDR ranges, loopback is always direct, and the model-written code-runtime/workflow workers never receive proxy variables (so a passworded proxy URL can't leak into the model's environment — but it does reach child tools likegit/gh, which the model can ask to print)..envcannot set proxy variables — DSH refuses to start rather than let agit clone'd repo steer traffic;$DSH_HOME/.envis the supported place. TLS-intercepting corporate proxies needNODE_EXTRA_CA_CERTSexported before launch.@deepseek-ai/dsh-http-proxyutil package (packages/util/http-proxy) in the regenerated module graph and config catalog;e2b,subprocess,web-fetch-http,session-snapshot, andloader-smokenow all depend on it — proxy plumbing was centralized into one package. Thee2b/subprocesstable-row moves and the e2b source line-number bump are incidental reorg churn from that refactor.Metadata (
llms.txt,.metadata.json) only add the new page; two oldnews/entries (news1226, news250120) now resolve their titles instead of being flagged as fallback shells — index hygiene, not content change.